796022fe20845cea38b42da4fbd711a71aa1a889,src/main/java/org/jboss/forge/plugin/idea/ui/component/ChooserComponent.java,ChooserComponent,getInputValue,#,110

Before Change



    protected String getInputValue()
    {
        return converter.convert(InputComponents.getValueFor(input));
    }

    private List<String> getCompletions()

After Change



   protected String getInputValue()
   {
      Object value = InputComponents.getValueFor(input);
      return (value == null) ? null : converter.convert(value);
   }

   private List<String> getCompletions()